.shg-rich-text {
  overflow-wrap: break-word;
}

.shg-rich-text img {
  margin: 0 20px;
}

@media (max-width: 768px) {
  .shg-rich-text img {
    display: block;
    float: none !important;
    margin: 0 auto;
  }
}

.shg-default-text-content *:first-child {
  margin-top: 0;
}

.shg-default-text-content {
  text-align: left;
}

.shg-default-text-content p,
.shg-default-text-content h1,
.shg-default-text-content h2,
.shg-default-text-content h3,
.shg-default-text-content h4,
.shg-default-text-content h5,
.shg-default-text-content h6,
.shg-default-text-content address,
.shg-default-text-content pre,
.shg-default-text-content div,
.shg-default-text-content ol,
.shg-default-text-content ul {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  color: #000000;
  font-family: inherit;
  font-style: normal;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-transform: none;
}

.shg-default-text-content a {
  background-color: inherit;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-style: inherit;
  text-decoration: underline;
  text-transform: inherit;
}

.shg-default-text-content strong,
.shg-default-text-content em {
  background-color: inherit;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: inherit;
  text-transform: inherit;
}

.shg-default-text-content em {
  font-weight: inherit;
}

.shg-default-text-content strong {
  font-style: inherit;
  font-weight: 700;
}

/* https://stackoverflow.com/a/16094931/3696652 */
.shg-default-text-content ::-moz-selection, .shg-default-text-content *::-moz-selection {
  background: #accef7;
}
.shg-default-text-content ::selection,
.shg-default-text-content *::selection {
  background: #accef7;
}

.shg-default-text-content p {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0.6em;
}

.shg-default-text-content h1 {
  font-size: 1.714em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.166;
  margin-top: 0.67em;
}

.shg-default-text-content h2 {
  font-size: 1.43em;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-top: 0.83em;
}

.shg-default-text-content h3 {
  font-size: 1.142em;
  font-weight: 500;
  letter-spacing: -0.008em;
  line-height: 1.5;
  margin-top: 1em;
}

.shg-default-text-content h4 {
  font-size: 1em;
  font-weight: 600;
  letter-spacing: -0.006em;
  line-height: 1.428;
  margin-top: 1.33em;
}

.shg-default-text-content h5 {
  font-size: 0.857em;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.333;
  margin-top: 1.43em;
}

.shg-default-text-content h6 {
  font-size: 0.785em;
  font-weight: 600;
  letter-spacing: -0.003em;
  line-height: 1.454;
  margin-top: 1.42em;
  text-transform: uppercase;
}

.shg-default-text-content ul {
  list-style: disc;
}

.shg-default-text-content ol {
  list-style: decimal;
}

.shg-default-text-content ul,
.shg-default-text-content ol {
  -webkit-margin-after: 1em;
          margin-block-end: 1em;
  -webkit-margin-before: 1em;
          margin-block-start: 1em;
  margin-bottom: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  margin-top: 0;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
}

.shg-default-text-content li {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1;
  list-style: inherit;
  margin-top: 0.67em;
}

.shg-default-text-content pre {
  font-family: monospace;
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 1em;
  white-space: pre-wrap;
  word-break: normal;
}

.shg-default-text-content address {
  font-size: 1em;
  font-style: italic;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-top: 0;
}

.shg-default-text-content div {
  font-size: 1em;
  font-weight: normal;
  letter-spacing: -0.005em;
  line-height: 1.714;
  margin-bottom: 0;
  margin-top: 0.67em;
}

.shg-box {
  position: relative;
  display: flex;
  width: 100%;
  flex-direction: column;
  /**
   * While `flex: 1` is enough here, we need to supply the rest
   * of the parameters (`1 auto`) to keep compatibility with IE11.
   * Otherwise, IE11 flex would break.
   */
  flex: 1 1 auto;
}

.shg-box > .shg-box-content {
  z-index: 4;
  position: relative;
  /**
   * This is part of an IE11 fallback to avoid flex introducing
   * huge amount of weird space on the bottom on the section element.
   */
  min-height: 1px;
}

.shg-box-vertical-align-wrapper, .shg-box-vertical-center-wrapper {
  display: flex;
  width: 100%;
}

.shg-box-vertical-align-top {
  justify-content: flex-start;
}

.shg-box-vertical-align-center, .shg-box-vertical-center {
  justify-content: center;
}

.shg-box-vertical-align-bottom {
  justify-content: flex-end;
}

.shg-box-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  pointer-events: none;
}

.shg-box-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: -1;
}

#s-53448499-5521-4ed6-9ba2-30b733a72ec9 {
  min-height: 50px;
}








#s-53448499-5521-4ed6-9ba2-30b733a72ec9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-53448499-5521-4ed6-9ba2-30b733a72ec9.shg-box.shg-c {
  justify-content: center;
}

#s-50732908-da93-4b52-b8ac-3b1fa6468950 {
  background-color: rgba(250, 250, 250, 1);
}








#s-50732908-da93-4b52-b8ac-3b1fa6468950 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-50732908-da93-4b52-b8ac-3b1fa6468950.shg-box.shg-c {
  justify-content: center;
}

.shogun-heading-component h1,
.shogun-heading-component h2,
.shogun-heading-component h3,
.shogun-heading-component h4,
.shogun-heading-component h5,
.shogun-heading-component h6 {
  margin: 0;
  padding: 0;
  display: block;
  color: #000;
  text-transform: none;
  font-weight: normal;
  font-style: normal;
  letter-spacing: normal;
  line-height: normal;
}

.shogun-heading-component a {
  text-decoration: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

#s-1be72973-827a-4948-97a3-03199b92a145 {
  margin-left: auto;
margin-right: auto;
padding-top: 10px;
padding-bottom: 10px;
max-width: 600px;
text-align: center;
}

#s-1be72973-827a-4948-97a3-03199b92a145 .shogun-heading-component h1 {
  color: rgba(90, 90, 90, 1);
  font-weight:   ;
  font-family: ;
  font-style:   ;
  font-size: 38px;
  line-height: ;
  letter-spacing: ;
  text-align: center;
}



#s-13c9936d-133d-44a4-ac5b-33cab7215bf5 {
  min-height: 50px;
}








#s-13c9936d-133d-44a4-ac5b-33cab7215bf5 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-13c9936d-133d-44a4-ac5b-33cab7215bf5.shg-box.shg-c {
  justify-content: center;
}

#s-5552c6f6-af4a-4cd0-a4a1-c4b93b290c33 {
  min-height: 200px;
background-color: rgba(250, 250, 250, 1);
}








#s-5552c6f6-af4a-4cd0-a4a1-c4b93b290c33 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5552c6f6-af4a-4cd0-a4a1-c4b93b290c33.shg-box.shg-c {
  justify-content: center;
}

#s-a0aaf634-fd30-4c7a-98ed-22c4359c7535 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1330px;
}








#s-a0aaf634-fd30-4c7a-98ed-22c4359c7535 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a0aaf634-fd30-4c7a-98ed-22c4359c7535.shg-box.shg-c {
  justify-content: center;
}

#s-7501a33c-d1f8-4c2a-9ac5-c0c0c9d8533a {
  margin-left: 50px;
margin-bottom: 50px;
margin-right: 50px;
max-width: 1330px;
}

#s-1d86e5cc-6abe-446f-8faa-b7c2a5912cb6 {
  min-height: 50px;
background-color: rgba(250, 250, 250, 1);
}








#s-1d86e5cc-6abe-446f-8faa-b7c2a5912cb6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-1d86e5cc-6abe-446f-8faa-b7c2a5912cb6.shg-box.shg-c {
  justify-content: center;
}

#s-6521e8b5-ece3-4cfe-88ee-291334e7433a {
  margin-top: 40px;
}

#s-35cff033-72fc-4307-be5b-a58cda9feb4e {
  min-height: 50px;
}








#s-35cff033-72fc-4307-be5b-a58cda9feb4e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-35cff033-72fc-4307-be5b-a58cda9feb4e.shg-box.shg-c {
  justify-content: center;
}

#s-7f199ff1-a882-415c-9e0c-4f5e0d4b2280 {
  padding-left: 20px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(227, 239, 244, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-7f199ff1-a882-415c-9e0c-4f5e0d4b2280 {
  
}
}@media (max-width: 767px){#s-7f199ff1-a882-415c-9e0c-4f5e0d4b2280 {
  
}
}







#s-7f199ff1-a882-415c-9e0c-4f5e0d4b2280 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7f199ff1-a882-415c-9e0c-4f5e0d4b2280.shg-box.shg-c {
  justify-content: center;
}

#s-2eb8d0e0-c691-4f70-9ef4-8c8bff58b3d4 {
  border-style: solid;
margin-top: -50px;
margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 0px;
min-height: 50px;
max-width: 1330px;
}








#s-2eb8d0e0-c691-4f70-9ef4-8c8bff58b3d4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2eb8d0e0-c691-4f70-9ef4-8c8bff58b3d4.shg-box.shg-c {
  justify-content: center;
}

#s-c270ed1e-78c1-4356-8512-62e328677858 {
  margin-left: 0px;
margin-right: 0px;
}

#s-a6809d95-2bab-4419-9bb4-d113b1daba1f {
  min-height: 50px;
}








#s-a6809d95-2bab-4419-9bb4-d113b1daba1f > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a6809d95-2bab-4419-9bb4-d113b1daba1f.shg-box.shg-c {
  justify-content: center;
}

#s-86f2eb94-ba0a-4d5d-81d6-e8b78992d7ba {
  min-height: 50px;
}








#s-86f2eb94-ba0a-4d5d-81d6-e8b78992d7ba > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-86f2eb94-ba0a-4d5d-81d6-e8b78992d7ba.shg-box.shg-c {
  justify-content: center;
}

#s-e9ef308b-8b29-43da-b236-e19381e202e6 {
  min-height: 50px;
background-color: rgba(229, 243, 250, 1);
}








#s-e9ef308b-8b29-43da-b236-e19381e202e6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e9ef308b-8b29-43da-b236-e19381e202e6.shg-box.shg-c {
  justify-content: center;
}

#s-eb30e174-9a51-4039-9146-7147b87bc107 {
  margin-left: auto;
margin-right: auto;
padding-top: 25px;
padding-bottom: 25px;
min-height: 50px;
background-color: rgba(227, 239, 244, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-eb30e174-9a51-4039-9146-7147b87bc107 {
  display: none;
}
#s-eb30e174-9a51-4039-9146-7147b87bc107, #wrap-s-eb30e174-9a51-4039-9146-7147b87bc107 { display:none !important; }}@media (max-width: 767px){#s-eb30e174-9a51-4039-9146-7147b87bc107 {
  display: none;
}
#s-eb30e174-9a51-4039-9146-7147b87bc107, #wrap-s-eb30e174-9a51-4039-9146-7147b87bc107 { display:none !important; }}







#s-eb30e174-9a51-4039-9146-7147b87bc107 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-eb30e174-9a51-4039-9146-7147b87bc107.shg-box.shg-c {
  justify-content: center;
}

.shg-row {
  display: flex;
  flex-wrap: wrap;
  min-height: inherit;
  max-height: inherit;
justify-content: space-between;
}

.shg-row > * {
  min-height: inherit;
  max-height: inherit;
}

.shg-c-xs-1,
.shg-c-xs-2,
.shg-c-xs-3,
.shg-c-xs-4,
.shg-c-xs-5,
.shg-c-xs-6,
.shg-c-xs-7,
.shg-c-xs-8,
.shg-c-xs-9,
.shg-c-xs-10,
.shg-c-xs-11,
.shg-c-xs-12,
.shg-c-sm-1,
.shg-c-sm-2,
.shg-c-sm-3,
.shg-c-sm-4,
.shg-c-sm-5,
.shg-c-sm-6,
.shg-c-sm-7,
.shg-c-sm-8,
.shg-c-sm-9,
.shg-c-sm-10,
.shg-c-sm-11,
.shg-c-sm-12,
.shg-c-md-1,
.shg-c-md-2,
.shg-c-md-3,
.shg-c-md-4,
.shg-c-md-5,
.shg-c-md-6,
.shg-c-md-7,
.shg-c-md-8,
.shg-c-md-9,
.shg-c-md-10,
.shg-c-md-11,
.shg-c-md-12,
.shg-c-lg-1,
.shg-c-lg-2,
.shg-c-lg-3,
.shg-c-lg-4,
.shg-c-lg-5,
.shg-c-lg-6,
.shg-c-lg-7,
.shg-c-lg-8,
.shg-c-lg-9,
.shg-c-lg-10,
.shg-c-lg-11,
.shg-c-lg-12 {
  position: relative;
}

@media (min-width: 0px) {
[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-00ece162-ed6a-45da-bb8a-773109e43510"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-29a26969-0020-4860-9d45-741c9b338b1a {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
min-height: 50px;
}








#s-29a26969-0020-4860-9d45-741c9b338b1a > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-29a26969-0020-4860-9d45-741c9b338b1a.shg-box.shg-c {
  justify-content: center;
}

.shogun-image-container {
  position: relative;
}

.shogun-image-container.shg-align-left {
  text-align: left;
}

.shogun-image-container.shg-align-center {
  text-align: center;
}

.shogun-image-container.shg-align-right {
  text-align: right;
}

.shogun-image-linked {
  cursor: pointer;
}

.shogun-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  padding: 20px;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.shogun-image-overlay.shg-top-left {
  align-items: flex-start;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-top-center {
  align-items: flex-start;
  justify-content: center;
}

.shogun-image-overlay.shg-top-right {
  align-items: flex-start;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-middle-left {
  align-items: center;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-middle-center {
  align-items: center;
  justify-content: center;
}

.shogun-image-overlay.shg-middle-right {
  align-items: center;
  justify-content: flex-end;
}

.shogun-image-overlay.shg-bottom-left {
  align-items: flex-end;
  justify-content: flex-start;
}

.shogun-image-overlay.shg-bottom-center {
  align-items: flex-end;
  justify-content: center;
}

.shogun-image-overlay.shg-bottom-right {
  align-items: flex-end;
  justify-content: flex-end;
}

.shogun-image-overlay p {
  margin: 0;
  padding: 0;
  line-height: normal;
}

.shogun-image-cover {
  -o-object-fit: cover;
     object-fit: cover;
  font-family: "object-fit: cover;";
  width: 100%;
}

.shogun-image-contain {
  font-family: "object-fit: contain;";
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.shogun-image-link {
  display: block;
  min-height: inherit;
  max-height: inherit;
}

img.shogun-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.shogun-image-content {
  display: flex;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.shogun-image-content-linked, .shogun-image-content-not-linked {
  pointer-events: none;
}

.shogun-image-content-not-linked > div {
  pointer-events: auto;
}

.shogun-image-content-linked a,
.shogun-image-content-linked button,
.shogun-image-content-linked iframe,
.shogun-image-content-linked .shg-box-linked {
  pointer-events: auto;
}

.shogun-image-content > div {
  width: 100%;
}

.shogun-image-content-top {
  align-items: flex-start;
}

.shogun-image-content-center {
  align-items: center;
}

.shogun-image-content-bottom {
  align-items: flex-end;
}
#s-1ca82415-d8e2-41d5-beba-ff777f6cf3c8 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
text-align: center;
}




  #s-1ca82415-d8e2-41d5-beba-ff777f6cf3c8 img.shogun-image {
    
    width: px;
  }


#s-1ca82415-d8e2-41d5-beba-ff777f6cf3c8 .shogun-image-content {
  
    align-items: center;
  
}

#s-c20369d5-582b-4a17-a532-b782edf6ba11 {
  border-style: solid;
margin-left: -50px;
margin-right: 50px;
padding-top: 50px;
padding-left: 50px;
padding-bottom: 50px;
padding-right: 50px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-c20369d5-582b-4a17-a532-b782edf6ba11 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c20369d5-582b-4a17-a532-b782edf6ba11.shg-box.shg-c {
  justify-content: center;
}

#s-5a31a7d5-3444-4183-ad1b-cdefe58c46cb {
  margin-bottom: 25px;
}

#s-a3ecf175-2c7f-40ce-ac60-e00a9abb3427 {
  border-style: solid;
margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 50px;
max-width: 800px;
}








#s-a3ecf175-2c7f-40ce-ac60-e00a9abb3427 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a3ecf175-2c7f-40ce-ac60-e00a9abb3427.shg-box.shg-c {
  justify-content: center;
}

#s-9ae254fa-d825-44a1-a330-9c669954d997 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-9ae254fa-d825-44a1-a330-9c669954d997"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-35e74e9d-0b6d-45d7-8b65-d96901ae6cf2 {
  max-width: 24px;
text-align: center;
}




  #s-35e74e9d-0b6d-45d7-8b65-d96901ae6cf2 img.shogun-image {
    
    width: px;
  }


#s-35e74e9d-0b6d-45d7-8b65-d96901ae6cf2 .shogun-image-content {
  
    align-items: center;
  
}








#s-c649960b-43b3-43b9-9677-07032711d587 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c649960b-43b3-43b9-9677-07032711d587.shg-box.shg-c {
  justify-content: center;
}

#s-41d7d25f-6b32-44de-a872-ab58b2662155 {
  padding-left: 20px;
}

#s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-8f2ae5fc-3ac3-47be-9a74-b33904c6fdc9"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-faeb3c0a-ffc0-457d-8e72-0b951ad2878e {
  max-width: 24px;
text-align: center;
}




  #s-faeb3c0a-ffc0-457d-8e72-0b951ad2878e img.shogun-image {
    
    width: px;
  }


#s-faeb3c0a-ffc0-457d-8e72-0b951ad2878e .shogun-image-content {
  
    align-items: center;
  
}








#s-f7788f5e-a5e5-4eb6-96c1-49f680dd91a0 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-f7788f5e-a5e5-4eb6-96c1-49f680dd91a0.shg-box.shg-c {
  justify-content: center;
}

#s-ba4ed0b3-57b8-4963-baa9-9c39304d3544 {
  padding-left: 20px;
}

#s-3851dac1-7d4c-46ec-b52d-f5c72b52375c {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-3851dac1-7d4c-46ec-b52d-f5c72b52375c"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-c8b3aece-258b-435e-be60-dae48322b2b7 {
  max-width: 24px;
text-align: center;
}




  #s-c8b3aece-258b-435e-be60-dae48322b2b7 img.shogun-image {
    
    width: px;
  }


#s-c8b3aece-258b-435e-be60-dae48322b2b7 .shogun-image-content {
  
    align-items: center;
  
}








#s-593fa4e6-c482-4916-8fdc-4039aeaf001e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-593fa4e6-c482-4916-8fdc-4039aeaf001e.shg-box.shg-c {
  justify-content: center;
}

#s-7a9f055c-b720-411a-9dfc-3e9f50f7ba32 {
  padding-left: 20px;
}

#s-3228c52e-ea68-461e-a866-0f668b7c7e7b {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-3228c52e-ea68-461e-a866-0f668b7c7e7b"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-766d8917-bc63-44d6-b3f7-3a4ea69a0669 {
  max-width: 24px;
text-align: center;
}




  #s-766d8917-bc63-44d6-b3f7-3a4ea69a0669 img.shogun-image {
    
    width: px;
  }


#s-766d8917-bc63-44d6-b3f7-3a4ea69a0669 .shogun-image-content {
  
    align-items: center;
  
}








#s-df4b2aac-5aa2-4e8f-9e52-3352c7d1d8ab > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-df4b2aac-5aa2-4e8f-9e52-3352c7d1d8ab.shg-box.shg-c {
  justify-content: center;
}

#s-3b742514-bc0f-4471-91c4-ca24c7b95052 {
  padding-left: 20px;
}

#s-da4776d4-f3de-47c0-9c0b-e70b28be153c {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-da4776d4-f3de-47c0-9c0b-e70b28be153c"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-df778c26-3a9e-45c3-b11a-abc0d5445a9f {
  max-width: 24px;
text-align: center;
}




  #s-df778c26-3a9e-45c3-b11a-abc0d5445a9f img.shogun-image {
    
    width: px;
  }


#s-df778c26-3a9e-45c3-b11a-abc0d5445a9f .shogun-image-content {
  
    align-items: center;
  
}








#s-c3cfb85d-dbc7-437c-b9c8-39fd8da838a6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c3cfb85d-dbc7-437c-b9c8-39fd8da838a6.shg-box.shg-c {
  justify-content: center;
}

#s-73232449-c734-4265-8fe1-ffa619418331 {
  padding-left: 20px;
}

#s-10485164-daec-4a7f-8634-5b11f1a574f2 {
  margin-left: auto;
margin-right: auto;
padding-top: 25px;
padding-bottom: 25px;
min-height: 50px;
background-color: rgba(227, 239, 244, 1);
}
@media (min-width: 1200px){#s-10485164-daec-4a7f-8634-5b11f1a574f2 {
  display: none;
}
#s-10485164-daec-4a7f-8634-5b11f1a574f2, #wrap-s-10485164-daec-4a7f-8634-5b11f1a574f2 { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-10485164-daec-4a7f-8634-5b11f1a574f2 {
  display: none;
}
#s-10485164-daec-4a7f-8634-5b11f1a574f2, #wrap-s-10485164-daec-4a7f-8634-5b11f1a574f2 { display:none !important; }}







#s-10485164-daec-4a7f-8634-5b11f1a574f2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-10485164-daec-4a7f-8634-5b11f1a574f2.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-ede9d9da-0516-4a1f-bdc7-babbe71abcd5"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-fe053b74-d40f-4c87-8e34-34496920d8a3 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
min-height: 50px;
}








#s-fe053b74-d40f-4c87-8e34-34496920d8a3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fe053b74-d40f-4c87-8e34-34496920d8a3.shg-box.shg-c {
  justify-content: center;
}

#s-f3666b35-cd4a-4699-aaf2-4f54a1cd53c1 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
text-align: center;
}




  #s-f3666b35-cd4a-4699-aaf2-4f54a1cd53c1 img.shogun-image {
    
    width: px;
  }


#s-f3666b35-cd4a-4699-aaf2-4f54a1cd53c1 .shogun-image-content {
  
    align-items: center;
  
}

#s-c8c26d6e-1704-4b2a-bd8c-32246cafafe4 {
  border-style: solid;
margin-left: -50px;
margin-right: 50px;
padding-top: 50px;
padding-left: 50px;
padding-bottom: 50px;
padding-right: 50px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-c8c26d6e-1704-4b2a-bd8c-32246cafafe4 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-c8c26d6e-1704-4b2a-bd8c-32246cafafe4.shg-box.shg-c {
  justify-content: center;
}

#s-579679e4-50aa-4443-bc90-7f211c7d140d {
  margin-bottom: 25px;
}

#s-77bf8b3b-7721-4e55-bf5a-7fc445135a3d {
  min-height: 50px;
}








#s-77bf8b3b-7721-4e55-bf5a-7fc445135a3d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-77bf8b3b-7721-4e55-bf5a-7fc445135a3d.shg-box.shg-c {
  justify-content: center;
}

#s-efb6592c-5db5-45fa-9be1-23c6e1daa74e {
  min-height: 50px;
background-color: rgba(229, 243, 250, 1);
}








#s-efb6592c-5db5-45fa-9be1-23c6e1daa74e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-efb6592c-5db5-45fa-9be1-23c6e1daa74e.shg-box.shg-c {
  justify-content: center;
}

#s-8ef156d2-bf4d-4b46-b454-292ca3ad302d {
  margin-left: auto;
margin-right: auto;
padding-top: 25px;
padding-bottom: 25px;
min-height: 50px;
background-color: rgba(227, 239, 244, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-8ef156d2-bf4d-4b46-b454-292ca3ad302d {
  
}
}@media (max-width: 767px){#s-8ef156d2-bf4d-4b46-b454-292ca3ad302d {
  
}
}







#s-8ef156d2-bf4d-4b46-b454-292ca3ad302d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-8ef156d2-bf4d-4b46-b454-292ca3ad302d.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-8082f2ce-8151-4fb3-a9dc-eb39cb633f06"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-a622ff21-7235-4c28-a9d1-91aeff1ea3a9 {
  border-style: solid;
margin-left: 50px;
margin-right: -50px;
padding-top: 50px;
padding-left: 50px;
padding-bottom: 50px;
padding-right: 50px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-a622ff21-7235-4c28-a9d1-91aeff1ea3a9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-a622ff21-7235-4c28-a9d1-91aeff1ea3a9.shg-box.shg-c {
  justify-content: center;
}

#s-8866a3f6-668f-430d-b562-b7d2322ca579 {
  margin-bottom: 25px;
}

#s-32247986-29f9-4d5f-9e67-e18e90404e0b {
  border-style: solid;
margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 50px;
max-width: 800px;
}








#s-32247986-29f9-4d5f-9e67-e18e90404e0b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-32247986-29f9-4d5f-9e67-e18e90404e0b.shg-box.shg-c {
  justify-content: center;
}

#s-8deb00c3-1972-4edb-ba18-5cd80da19c75 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-8deb00c3-1972-4edb-ba18-5cd80da19c75"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-fc72dcce-c781-4e9b-8ad7-11836aae7544 {
  max-width: 24px;
text-align: center;
}




  #s-fc72dcce-c781-4e9b-8ad7-11836aae7544 img.shogun-image {
    
    width: px;
  }


#s-fc72dcce-c781-4e9b-8ad7-11836aae7544 .shogun-image-content {
  
    align-items: center;
  
}








#s-ba11ca99-673a-4eb1-bd01-33e0dfa20949 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ba11ca99-673a-4eb1-bd01-33e0dfa20949.shg-box.shg-c {
  justify-content: center;
}

#s-f0c422dd-9ad8-4bda-ad7a-5e132761f6a7 {
  padding-left: 20px;
}

#s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-354fc03c-ffe5-44dd-a3f8-c963e05b8b96"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-e1b6dd94-fa55-45da-a3de-1590f00e7e8d {
  max-width: 24px;
text-align: center;
}




  #s-e1b6dd94-fa55-45da-a3de-1590f00e7e8d img.shogun-image {
    
    width: px;
  }


#s-e1b6dd94-fa55-45da-a3de-1590f00e7e8d .shogun-image-content {
  
    align-items: center;
  
}








#s-738f4604-0dbc-4bc3-b8cf-5f3774403566 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-738f4604-0dbc-4bc3-b8cf-5f3774403566.shg-box.shg-c {
  justify-content: center;
}

#s-c0974b14-b5ab-428c-8102-baad785320ff {
  padding-left: 20px;
}

#s-eae1d201-3f07-42ff-a141-9636290011da {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-eae1d201-3f07-42ff-a141-9636290011da"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-f9630057-74de-4a7f-92fc-28caaf62aaa8 {
  max-width: 24px;
text-align: center;
}




  #s-f9630057-74de-4a7f-92fc-28caaf62aaa8 img.shogun-image {
    
    width: px;
  }


#s-f9630057-74de-4a7f-92fc-28caaf62aaa8 .shogun-image-content {
  
    align-items: center;
  
}








#s-032f6a22-5e8e-45d0-a5b3-52374b6e0b84 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-032f6a22-5e8e-45d0-a5b3-52374b6e0b84.shg-box.shg-c {
  justify-content: center;
}

#s-e7e5ca64-f849-4c91-aeb4-93440cc35f3b {
  padding-left: 20px;
}

#s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-9f132226-fe4f-4c3f-9da2-55fcb1bf3472"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-0b73b214-7c78-46e3-960c-d41f682fb08f {
  max-width: 24px;
text-align: center;
}




  #s-0b73b214-7c78-46e3-960c-d41f682fb08f img.shogun-image {
    
    width: px;
  }


#s-0b73b214-7c78-46e3-960c-d41f682fb08f .shogun-image-content {
  
    align-items: center;
  
}








#s-e88b16de-330f-49ea-9579-b0406cdf70a7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e88b16de-330f-49ea-9579-b0406cdf70a7.shg-box.shg-c {
  justify-content: center;
}

#s-26c556b2-f9e0-493a-b283-155d74ad9e96 {
  padding-left: 20px;
}

#s-6353f96f-a2e1-4dd8-99cd-1744c362250f {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-6353f96f-a2e1-4dd8-99cd-1744c362250f"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-2f07d082-d7af-42d9-a7e8-9c71237711ae {
  max-width: 24px;
text-align: center;
}




  #s-2f07d082-d7af-42d9-a7e8-9c71237711ae img.shogun-image {
    
    width: px;
  }


#s-2f07d082-d7af-42d9-a7e8-9c71237711ae .shogun-image-content {
  
    align-items: center;
  
}








#s-ebf64d67-c182-46ea-ad3a-151a9b2f857d > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ebf64d67-c182-46ea-ad3a-151a9b2f857d.shg-box.shg-c {
  justify-content: center;
}

#s-a3258453-9110-4e14-bddf-675b1f2a2cb7 {
  padding-left: 20px;
}

#s-493c44b7-d018-4a39-934e-18ac2ed5386b {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
min-height: 50px;
}








#s-493c44b7-d018-4a39-934e-18ac2ed5386b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-493c44b7-d018-4a39-934e-18ac2ed5386b.shg-box.shg-c {
  justify-content: center;
}

#s-f7a75604-e5bb-4fd3-9301-8a540878cd0f {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
text-align: center;
}




  #s-f7a75604-e5bb-4fd3-9301-8a540878cd0f img.shogun-image {
    
    width: px;
  }


#s-f7a75604-e5bb-4fd3-9301-8a540878cd0f .shogun-image-content {
  
    align-items: center;
  
}

#s-e65f619b-282d-490f-8bc4-2508d1fbe096 {
  min-height: 50px;
}








#s-e65f619b-282d-490f-8bc4-2508d1fbe096 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e65f619b-282d-490f-8bc4-2508d1fbe096.shg-box.shg-c {
  justify-content: center;
}

#s-ca072a4d-455d-4610-9226-039f205e2817 {
  min-height: 50px;
}








#s-ca072a4d-455d-4610-9226-039f205e2817 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ca072a4d-455d-4610-9226-039f205e2817.shg-box.shg-c {
  justify-content: center;
}

#s-4f7c9938-ce23-44ca-b02e-023436fdfcea {
  min-height: 50px;
background-color: rgba(229, 243, 250, 1);
}








#s-4f7c9938-ce23-44ca-b02e-023436fdfcea > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-4f7c9938-ce23-44ca-b02e-023436fdfcea.shg-box.shg-c {
  justify-content: center;
}

#s-ef1564d5-0467-48fe-8e58-1f877c6927b9 {
  margin-left: auto;
margin-right: auto;
padding-top: 25px;
padding-bottom: 25px;
min-height: 50px;
background-color: rgba(227, 239, 244, 1);
}
@media (min-width: 768px) and (max-width: 991px){#s-ef1564d5-0467-48fe-8e58-1f877c6927b9 {
  display: none;
}
#s-ef1564d5-0467-48fe-8e58-1f877c6927b9, #wrap-s-ef1564d5-0467-48fe-8e58-1f877c6927b9 { display:none !important; }}@media (max-width: 767px){#s-ef1564d5-0467-48fe-8e58-1f877c6927b9 {
  display: none;
}
#s-ef1564d5-0467-48fe-8e58-1f877c6927b9, #wrap-s-ef1564d5-0467-48fe-8e58-1f877c6927b9 { display:none !important; }}







#s-ef1564d5-0467-48fe-8e58-1f877c6927b9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ef1564d5-0467-48fe-8e58-1f877c6927b9.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-5069f83a-ad31-4bc7-b529-6c5028512847"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-68452f22-97fd-4fe1-9139-da45719ee2f9 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
min-height: 50px;
}








#s-68452f22-97fd-4fe1-9139-da45719ee2f9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-68452f22-97fd-4fe1-9139-da45719ee2f9.shg-box.shg-c {
  justify-content: center;
}

#s-9fb894af-94c2-4653-9c25-0732342f7b5c {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
text-align: center;
}




  #s-9fb894af-94c2-4653-9c25-0732342f7b5c img.shogun-image {
    
    width: px;
  }


#s-9fb894af-94c2-4653-9c25-0732342f7b5c .shogun-image-content {
  
    align-items: center;
  
}

#s-802d7583-cb06-4fe0-a9b7-be984d02a81b {
  border-style: solid;
margin-left: -50px;
margin-right: 50px;
padding-top: 50px;
padding-left: 50px;
padding-bottom: 50px;
padding-right: 50px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-802d7583-cb06-4fe0-a9b7-be984d02a81b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-802d7583-cb06-4fe0-a9b7-be984d02a81b.shg-box.shg-c {
  justify-content: center;
}

#s-c6214944-9176-4407-8106-7831b4ffdef3 {
  margin-bottom: 25px;
}

#s-d6aa6ee3-5b35-4b39-a16a-68e4a43018fc {
  border-style: solid;
margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 50px;
max-width: 800px;
}








#s-d6aa6ee3-5b35-4b39-a16a-68e4a43018fc > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-d6aa6ee3-5b35-4b39-a16a-68e4a43018fc.shg-box.shg-c {
  justify-content: center;
}

#s-7d290579-061d-4eff-9eb2-197903540998 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-7d290579-061d-4eff-9eb2-197903540998"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-5c75a302-286e-48a7-acd1-5fde87e0585f {
  max-width: 24px;
text-align: center;
}




  #s-5c75a302-286e-48a7-acd1-5fde87e0585f img.shogun-image {
    
    width: px;
  }


#s-5c75a302-286e-48a7-acd1-5fde87e0585f .shogun-image-content {
  
    align-items: center;
  
}








#s-851dcb08-58bb-410f-b209-336a881abd2e > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-851dcb08-58bb-410f-b209-336a881abd2e.shg-box.shg-c {
  justify-content: center;
}

#s-a8856989-eafd-4e9c-9519-c2e10a4b1928 {
  padding-left: 20px;
}

#s-094516ba-2378-49ad-b2d2-89cc8833447c {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-094516ba-2378-49ad-b2d2-89cc8833447c"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-cb808173-42df-4190-98b1-7c8a243f5167 {
  max-width: 24px;
text-align: center;
}




  #s-cb808173-42df-4190-98b1-7c8a243f5167 img.shogun-image {
    
    width: px;
  }


#s-cb808173-42df-4190-98b1-7c8a243f5167 .shogun-image-content {
  
    align-items: center;
  
}








#s-58da98f7-9709-4030-a317-0cc95bbbeed3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-58da98f7-9709-4030-a317-0cc95bbbeed3.shg-box.shg-c {
  justify-content: center;
}

#s-295aa869-6a09-4e0b-9b3e-7f20b89116b5 {
  padding-left: 20px;
}

#s-ebd72543-2e3a-4bf7-b175-894c817bea04 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-ebd72543-2e3a-4bf7-b175-894c817bea04"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-c28a2923-a0af-4135-971b-458b11228863 {
  max-width: 24px;
text-align: center;
}




  #s-c28a2923-a0af-4135-971b-458b11228863 img.shogun-image {
    
    width: px;
  }


#s-c28a2923-a0af-4135-971b-458b11228863 .shogun-image-content {
  
    align-items: center;
  
}








#s-adf31158-5903-43cd-87e6-93c78451d264 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-adf31158-5903-43cd-87e6-93c78451d264.shg-box.shg-c {
  justify-content: center;
}

#s-cd8a286e-0114-42ca-b55f-a93e8759ff0f {
  padding-left: 20px;
}

#s-c28dd2df-124a-4f5c-952e-445d1ac0b100 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-c28dd2df-124a-4f5c-952e-445d1ac0b100"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-601f22cb-fab8-4da3-af28-a9435d554831 {
  max-width: 24px;
text-align: center;
}




  #s-601f22cb-fab8-4da3-af28-a9435d554831 img.shogun-image {
    
    width: px;
  }


#s-601f22cb-fab8-4da3-af28-a9435d554831 .shogun-image-content {
  
    align-items: center;
  
}








#s-321c6017-75cd-454a-83af-da3782d27dca > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-321c6017-75cd-454a-83af-da3782d27dca.shg-box.shg-c {
  justify-content: center;
}

#s-f82a81f3-59fe-4760-8bb6-196ff719eda0 {
  padding-left: 20px;
}

#s-c530c869-1a13-46c2-aae2-1af474bac781 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-c530c869-1a13-46c2-aae2-1af474bac781"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-b3a55e50-6bdd-489d-9d18-bbb7471afd10 {
  max-width: 24px;
text-align: center;
}




  #s-b3a55e50-6bdd-489d-9d18-bbb7471afd10 img.shogun-image {
    
    width: px;
  }


#s-b3a55e50-6bdd-489d-9d18-bbb7471afd10 .shogun-image-content {
  
    align-items: center;
  
}








#s-82f67716-be1f-4cf6-ae14-e3c0c4f4c9bb > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-82f67716-be1f-4cf6-ae14-e3c0c4f4c9bb.shg-box.shg-c {
  justify-content: center;
}

#s-743e9587-997f-41a4-b5fc-fa5128445914 {
  padding-left: 20px;
}

#s-6b9738a0-bd1e-4957-8898-db48269e767c {
  margin-left: auto;
margin-right: auto;
padding-top: 25px;
padding-bottom: 25px;
min-height: 50px;
background-color: rgba(227, 239, 244, 1);
}
@media (min-width: 1200px){#s-6b9738a0-bd1e-4957-8898-db48269e767c {
  display: none;
}
#s-6b9738a0-bd1e-4957-8898-db48269e767c, #wrap-s-6b9738a0-bd1e-4957-8898-db48269e767c { display:none !important; }}@media (min-width: 992px) and (max-width: 1199px){#s-6b9738a0-bd1e-4957-8898-db48269e767c {
  display: none;
}
#s-6b9738a0-bd1e-4957-8898-db48269e767c, #wrap-s-6b9738a0-bd1e-4957-8898-db48269e767c { display:none !important; }}







#s-6b9738a0-bd1e-4957-8898-db48269e767c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-6b9738a0-bd1e-4957-8898-db48269e767c.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-669fc3b5-9735-419d-af1c-76ef91ff57e4"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-227c1edc-dfa1-48ac-98c3-71f672b777ac {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
min-height: 50px;
}








#s-227c1edc-dfa1-48ac-98c3-71f672b777ac > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-227c1edc-dfa1-48ac-98c3-71f672b777ac.shg-box.shg-c {
  justify-content: center;
}

#s-e7b0cd0c-4632-42c0-b3e7-6303ce061aa5 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
text-align: center;
}




  #s-e7b0cd0c-4632-42c0-b3e7-6303ce061aa5 img.shogun-image {
    
    width: px;
  }


#s-e7b0cd0c-4632-42c0-b3e7-6303ce061aa5 .shogun-image-content {
  
    align-items: center;
  
}

#s-fe707d93-6e80-4d41-bf7d-5905e5359764 {
  border-style: solid;
margin-left: -50px;
margin-right: 50px;
padding-top: 50px;
padding-left: 50px;
padding-bottom: 50px;
padding-right: 50px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-fe707d93-6e80-4d41-bf7d-5905e5359764 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-fe707d93-6e80-4d41-bf7d-5905e5359764.shg-box.shg-c {
  justify-content: center;
}

#s-1e9db3c7-9c51-4c94-9867-e57dccee2879 {
  margin-bottom: 25px;
}

#s-b91b414a-10b0-4fcf-815f-5f748ba9ff0c {
  min-height: 50px;
}








#s-b91b414a-10b0-4fcf-815f-5f748ba9ff0c > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b91b414a-10b0-4fcf-815f-5f748ba9ff0c.shg-box.shg-c {
  justify-content: center;
}

#s-579f371c-6fa7-4b9b-9fd8-043be61ec7a9 {
  min-height: 50px;
background-color: rgba(227, 239, 244, 1);
}








#s-579f371c-6fa7-4b9b-9fd8-043be61ec7a9 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-579f371c-6fa7-4b9b-9fd8-043be61ec7a9.shg-box.shg-c {
  justify-content: center;
}

#s-5b1bb86a-07b6-49a1-8fa1-b6bb359dbab3 {
  margin-left: auto;
margin-right: auto;
padding-top: 25px;
padding-bottom: 25px;
min-height: 50px;
}








#s-5b1bb86a-07b6-49a1-8fa1-b6bb359dbab3 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5b1bb86a-07b6-49a1-8fa1-b6bb359dbab3.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 992px) {
[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 15.0px);
}

}

@media (min-width: 1200px) {
[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 15.0px);
}

[id="s-0e46be83-7781-4e59-976a-7f7e17ef4e65"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 15.0px);
}

}

#s-492ff7cb-5261-4186-a924-4b2cd9cd6415 {
  border-style: solid;
margin-left: 50px;
margin-right: -50px;
padding-top: 50px;
padding-left: 50px;
padding-bottom: 50px;
padding-right: 50px;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 50px;
background-color: rgba(255, 255, 255, 1);
}








#s-492ff7cb-5261-4186-a924-4b2cd9cd6415 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-492ff7cb-5261-4186-a924-4b2cd9cd6415.shg-box.shg-c {
  justify-content: center;
}

#s-4dca7b88-033f-41d0-9232-e7966fdc7f58 {
  margin-bottom: 25px;
}

#s-5175dade-ff37-4800-982d-0354a17f28aa {
  border-style: solid;
margin-left: auto;
margin-right: auto;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
min-height: 50px;
max-width: 800px;
}








#s-5175dade-ff37-4800-982d-0354a17f28aa > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-5175dade-ff37-4800-982d-0354a17f28aa.shg-box.shg-c {
  justify-content: center;
}

#s-af3ab34f-2fef-4a04-a706-ea96d81320c2 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-af3ab34f-2fef-4a04-a706-ea96d81320c2"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-0609e48c-f674-459f-bdbd-6f6e28be09ba {
  max-width: 24px;
text-align: center;
}




  #s-0609e48c-f674-459f-bdbd-6f6e28be09ba img.shogun-image {
    
    width: px;
  }


#s-0609e48c-f674-459f-bdbd-6f6e28be09ba .shogun-image-content {
  
    align-items: center;
  
}








#s-e8039bef-680b-4762-8491-f82bfc021ff6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-e8039bef-680b-4762-8491-f82bfc021ff6.shg-box.shg-c {
  justify-content: center;
}

#s-36cb9d06-a944-49a3-9337-89acbc8a75d0 {
  padding-left: 20px;
}

#s-264e14b8-a6a9-47dd-80a0-bf346b95b527 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-264e14b8-a6a9-47dd-80a0-bf346b95b527"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-f88a03e0-df61-4cd0-8fe3-d164879e0948 {
  max-width: 24px;
text-align: center;
}




  #s-f88a03e0-df61-4cd0-8fe3-d164879e0948 img.shogun-image {
    
    width: px;
  }


#s-f88a03e0-df61-4cd0-8fe3-d164879e0948 .shogun-image-content {
  
    align-items: center;
  
}








#s-7bb640c7-996c-40b0-aee6-43757212a8b6 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7bb640c7-996c-40b0-aee6-43757212a8b6.shg-box.shg-c {
  justify-content: center;
}

#s-21062927-3acc-47a9-a212-2a7b9bb70f44 {
  padding-left: 20px;
}

#s-d1e01c85-80d2-485b-bdc1-2e674032e4e6 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-d1e01c85-80d2-485b-bdc1-2e674032e4e6"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-7ee72379-2a20-4318-8420-c929f3c82b38 {
  max-width: 24px;
text-align: center;
}




  #s-7ee72379-2a20-4318-8420-c929f3c82b38 img.shogun-image {
    
    width: px;
  }


#s-7ee72379-2a20-4318-8420-c929f3c82b38 .shogun-image-content {
  
    align-items: center;
  
}








#s-56babf9a-ea1e-4fab-98c2-19802eee9573 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-56babf9a-ea1e-4fab-98c2-19802eee9573.shg-box.shg-c {
  justify-content: center;
}

#s-3bb3a96d-1122-4dc9-9273-aeba4320fd11 {
  padding-left: 20px;
}

#s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-d0e2a229-ed3f-4cd6-a9f3-d22aa8965998"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-edfcbe83-7bec-4eeb-b2cd-6608d3555be3 {
  max-width: 24px;
text-align: center;
}




  #s-edfcbe83-7bec-4eeb-b2cd-6608d3555be3 img.shogun-image {
    
    width: px;
  }


#s-edfcbe83-7bec-4eeb-b2cd-6608d3555be3 .shogun-image-content {
  
    align-items: center;
  
}








#s-ce59621f-6b05-4492-954d-52bf9012130b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-ce59621f-6b05-4492-954d-52bf9012130b.shg-box.shg-c {
  justify-content: center;
}

#s-e3b241c7-bab4-48b4-b088-f4afa3bfe753 {
  padding-left: 20px;
}

#s-dd7289e6-72ce-499b-86bd-e13d699d6480 {
  margin-top: 10px;
margin-left: auto;
margin-bottom: 10px;
margin-right: auto;
}

@media (min-width: 0px) {
[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-xs-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-xs-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-xs-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-xs-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-xs-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-xs-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-xs-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-xs-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-xs-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-xs-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-xs-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-xs-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 768px) {
[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 992px) {
[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 0.0px);
}

}

@media (min-width: 1200px) {
[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 0.0px);
}

[id="s-dd7289e6-72ce-499b-86bd-e13d699d6480"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 0.0px);
}

}

#s-8d954522-e539-4ce0-8cb3-71aca2d62b9c {
  max-width: 24px;
text-align: center;
}




  #s-8d954522-e539-4ce0-8cb3-71aca2d62b9c img.shogun-image {
    
    width: px;
  }


#s-8d954522-e539-4ce0-8cb3-71aca2d62b9c .shogun-image-content {
  
    align-items: center;
  
}








#s-43ec10a5-99c6-4781-9d4d-25a00d3647ef > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-43ec10a5-99c6-4781-9d4d-25a00d3647ef.shg-box.shg-c {
  justify-content: center;
}

#s-1f383d81-3246-4a90-ad06-684d215631ca {
  padding-left: 20px;
}

#s-cdf4b182-b644-4eee-a1c5-d93c2cb51e05 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
min-height: 50px;
}








#s-cdf4b182-b644-4eee-a1c5-d93c2cb51e05 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-cdf4b182-b644-4eee-a1c5-d93c2cb51e05.shg-box.shg-c {
  justify-content: center;
}

#s-a2ed894e-ba1a-4175-8a00-0741348fc9b6 {
  border-style: solid;
border-top-width: 0px;
border-left-width: 0px;
border-bottom-width: 0px;
border-right-width: 0px;
border-color: #000;
border-style: solid;
border-radius: 5px;
text-align: center;
}




  #s-a2ed894e-ba1a-4175-8a00-0741348fc9b6 img.shogun-image {
    
    width: px;
  }


#s-a2ed894e-ba1a-4175-8a00-0741348fc9b6 .shogun-image-content {
  
    align-items: center;
  
}

#s-7af04bc0-5251-4604-8ff3-5bedbe986974 {
  min-height: 50px;
}








#s-7af04bc0-5251-4604-8ff3-5bedbe986974 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-7af04bc0-5251-4604-8ff3-5bedbe986974.shg-box.shg-c {
  justify-content: center;
}

#s-b6037a0b-4803-47c5-8104-8a0aa6fce738 {
  min-height: 50px;
}








#s-b6037a0b-4803-47c5-8104-8a0aa6fce738 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b6037a0b-4803-47c5-8104-8a0aa6fce738.shg-box.shg-c {
  justify-content: center;
}

#s-3b4c4e49-e394-4459-93d3-457f59fb334b {
  margin-left: auto;
margin-right: auto;
padding-top: 0px;
padding-left: 20px;
padding-bottom: 0px;
padding-right: 20px;
min-height: 50px;
max-width: 900px;
}








#s-3b4c4e49-e394-4459-93d3-457f59fb334b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3b4c4e49-e394-4459-93d3-457f59fb334b.shg-box.shg-c {
  justify-content: center;
}

#s-389df254-b6ba-44ba-8afa-8bf6ce84ef66 {
  margin-top: 24px;
margin-bottom: 24px;
}

@media (min-width: 0px) {
[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 12.0px);
}

}

@media (min-width: 992px) {
[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 12.0px);
}

}

@media (min-width: 1200px) {
[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 12.0px);
}

[id="s-389df254-b6ba-44ba-8afa-8bf6ce84ef66"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 12.0px);
}

}

#s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556 {
  margin-top: 24px;
margin-bottom: 24px;
}

@media (min-width: 0px) {
[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 12.0px);
}

}

@media (min-width: 992px) {
[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 12.0px);
}

}

@media (min-width: 1200px) {
[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 12.0px);
}

[id="s-470ba2ba-bcbb-45b8-88ea-7c8d3cea2556"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 12.0px);
}

}

#s-8928a70d-c9e3-4121-8007-8522c81eff31 {
  margin-top: 24px;
margin-bottom: 24px;
}

@media (min-width: 0px) {
[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 12.0px);
}

}

@media (min-width: 992px) {
[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 12.0px);
}

}

@media (min-width: 1200px) {
[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 12.0px);
}

[id="s-8928a70d-c9e3-4121-8007-8522c81eff31"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 12.0px);
}

}

#s-e0268ea2-5706-49a7-8120-8a3f74e65361 {
  margin-top: 24px;
margin-bottom: 24px;
}

@media (min-width: 0px) {
[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 12.0px);
}

}

@media (min-width: 992px) {
[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 12.0px);
}

}

@media (min-width: 1200px) {
[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 12.0px);
}

[id="s-e0268ea2-5706-49a7-8120-8a3f74e65361"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 12.0px);
}

}

#s-bec13f95-29dd-4a75-9760-2888544e09f2 {
  min-height: 50px;
}








#s-bec13f95-29dd-4a75-9760-2888544e09f2 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-bec13f95-29dd-4a75-9760-2888544e09f2.shg-box.shg-c {
  justify-content: center;
}

#s-86618551-a47f-48dc-8287-76b1ba4f575b {
  margin-top: 40px;
}

#s-24f5a9d4-5801-4a3e-bcc3-e2c408857118 {
  min-height: 50px;
}








#s-24f5a9d4-5801-4a3e-bcc3-e2c408857118 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-24f5a9d4-5801-4a3e-bcc3-e2c408857118.shg-box.shg-c {
  justify-content: center;
}

#s-3d9c616e-5363-44a2-bd19-cefafa7b9185 {
  padding-top: 0px;
padding-left: 20px;
padding-bottom: 0px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(227, 239, 244, 1);
}








#s-3d9c616e-5363-44a2-bd19-cefafa7b9185 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-3d9c616e-5363-44a2-bd19-cefafa7b9185.shg-box.shg-c {
  justify-content: center;
}

#s-0fe35d5e-1977-4f73-af5f-16703932298b {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1360px;
}








#s-0fe35d5e-1977-4f73-af5f-16703932298b > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-0fe35d5e-1977-4f73-af5f-16703932298b.shg-box.shg-c {
  justify-content: center;
}

#s-8723a15b-e46f-4e1c-98e4-4bfeb6aa0c3e {
  margin-bottom: 25px;
}

#s-2861137a-6c64-49e6-8fbe-671462811e66 {
  margin-top: 0px;
margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1330px;
}








#s-2861137a-6c64-49e6-8fbe-671462811e66 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-2861137a-6c64-49e6-8fbe-671462811e66.shg-box.shg-c {
  justify-content: center;
}

@media (min-width: 0px) {
[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-xs-12 {
  width: 100%;
}

}

@media (min-width: 768px) {
[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-sm-1 {
  width: calc(8.333333333333334% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-sm-2 {
  width: calc(16.666666666666668% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-sm-3 {
  width: calc(25.0% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-sm-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-sm-5 {
  width: calc(41.66666666666667% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-sm-6 {
  width: calc(50.0% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-sm-7 {
  width: calc(58.333333333333336% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-sm-8 {
  width: calc(66.66666666666667% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-sm-9 {
  width: calc(75.0% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-sm-10 {
  width: calc(83.33333333333334% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-sm-11 {
  width: calc(91.66666666666667% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-sm-12 {
  width: calc(100.0% - 33.333333333333336px);
}

}

@media (min-width: 992px) {
[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-md-1 {
  width: calc(8.333333333333334% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-md-2 {
  width: calc(16.666666666666668% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-md-3 {
  width: calc(25.0% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-md-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-md-5 {
  width: calc(41.66666666666667% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-md-6 {
  width: calc(50.0% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-md-7 {
  width: calc(58.333333333333336% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-md-8 {
  width: calc(66.66666666666667% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-md-9 {
  width: calc(75.0% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-md-10 {
  width: calc(83.33333333333334% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-md-11 {
  width: calc(91.66666666666667% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-md-12 {
  width: calc(100.0% - 33.333333333333336px);
}

}

@media (min-width: 1200px) {
[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-lg-1 {
  width: calc(8.333333333333334% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-lg-2 {
  width: calc(16.666666666666668% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-lg-3 {
  width: calc(25.0% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-lg-4 {
  width: calc(33.333333333333336% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-lg-5 {
  width: calc(41.66666666666667% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-lg-6 {
  width: calc(50.0% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-lg-7 {
  width: calc(58.333333333333336% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-lg-8 {
  width: calc(66.66666666666667% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-lg-9 {
  width: calc(75.0% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-lg-10 {
  width: calc(83.33333333333334% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-lg-11 {
  width: calc(91.66666666666667% - 33.333333333333336px);
}

[id="s-c61da38a-8c87-4fef-9855-aff6fe701d25"] > .shg-row > .shg-c-lg-12 {
  width: calc(100.0% - 33.333333333333336px);
}

}

#s-19c31469-1662-4b15-8ea0-80c6dc956663 {
  margin-left: auto;
margin-right: auto;
max-width: 175px;
text-align: center;
}




  #s-19c31469-1662-4b15-8ea0-80c6dc956663 img.shogun-image {
    
    width: px;
  }


#s-19c31469-1662-4b15-8ea0-80c6dc956663 .shogun-image-content {
  
    align-items: center;
  
}

#s-3327738a-8abf-4178-b3f1-635a73ff8d82 hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(227, 239, 244, 1);
}

#s-cc4cf733-36e0-4545-a79b-63b70423700b {
  margin-left: auto;
margin-right: auto;
max-width: 175px;
text-align: center;
}




  #s-cc4cf733-36e0-4545-a79b-63b70423700b img.shogun-image {
    
    width: px;
  }


#s-cc4cf733-36e0-4545-a79b-63b70423700b .shogun-image-content {
  
    align-items: center;
  
}

#s-8c2e2982-a95b-44f1-85bb-dc5996a10f11 hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(227, 239, 244, 1);
}

#s-839f046c-c325-41ec-95c4-b5e640632f45 {
  margin-left: auto;
margin-right: auto;
max-width: 175px;
text-align: center;
}




  #s-839f046c-c325-41ec-95c4-b5e640632f45 img.shogun-image {
    
    width: px;
  }


#s-839f046c-c325-41ec-95c4-b5e640632f45 .shogun-image-content {
  
    align-items: center;
  
}

#s-c9bef0d9-6ac1-4327-8383-044ee831149f hr {
  border: 0;
  width: 100%;
  border-top: 1px solid rgba(227, 239, 244, 1);
}

#s-45d2bdeb-7af3-419d-9b2c-ee0f08157f55 {
  min-height: 50px;
}








#s-45d2bdeb-7af3-419d-9b2c-ee0f08157f55 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-45d2bdeb-7af3-419d-9b2c-ee0f08157f55.shg-box.shg-c {
  justify-content: center;
}

#s-830a0193-8c23-4731-a505-197e2416431f {
  background-color: rgba(250, 250, 250, 1);
}

#s-756d2084-bfca-4457-9090-22683d51c581 {
  min-height: 50px;
}








#s-756d2084-bfca-4457-9090-22683d51c581 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-756d2084-bfca-4457-9090-22683d51c581.shg-box.shg-c {
  justify-content: center;
}

#s-b7408f40-ddf9-4006-b746-5cab69c61666 {
  padding-top: 0px;
padding-left: 20px;
padding-bottom: 0px;
padding-right: 20px;
min-height: 50px;
background-color: rgba(250, 250, 250, 1);
}








#s-b7408f40-ddf9-4006-b746-5cab69c61666 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-b7408f40-ddf9-4006-b746-5cab69c61666.shg-box.shg-c {
  justify-content: center;
}

#s-091a1a62-1709-4042-ab3f-3c49e3a519f7 {
  margin-left: auto;
margin-right: auto;
min-height: 50px;
max-width: 1260px;
}








#s-091a1a62-1709-4042-ab3f-3c49e3a519f7 > .shg-box-overlay {
  background-color: #fff;
  opacity: 0;
}#s-091a1a62-1709-4042-ab3f-3c49e3a519f7.shg-box.shg-c {
  justify-content: center;
}

#s-74dffac6-7f09-4337-8865-b6a2fbd97c25 {
  margin-bottom: 25px;
}

.shogun-accordion-wrapper .shogun-accordion {
  margin-bottom: 0;
  border-radius: 4px;
}

.shogun-accordion {
  margin-bottom: 20px;
  border-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.shogun-accordion-wrapper .shogun-accordion + .shogun-accordion {
  margin-top: 5px;
}

.shogun-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.shogun-accordion-heading {
  color: #333;
  border-bottom: 0;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  cursor: pointer;
}

.shogun-accordion-title {
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
  text-decoration: none;
  flex: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.shogun-accordion-body {
  display: none;
  opacity: 0;
  transition: opacity 0.5s linear;
}

.shogun-accordion-body.shogun-accordion-active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.shogun-accordion-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1.2em;
}

.shogun-accordion-icon > span {
  transition: 0.3s transform;
  position: absolute;
  right: 0;
  font-size: 1.2em;
}

.shogun-accordion-icon.shogun-icon-chevron > span::after {
  content: "▸";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-chevron
  > span {
  transform: rotate(90deg);
}

.shogun-accordion-icon.shogun-icon-plus > span::after {
  content: "＋";
}

.shogun-accordion.shogun-accordion-active
  > .shogun-accordion-heading
  .shogun-accordion-icon.shogun-icon-plus
  > span {
  transform: rotate(-225deg);
}

#s-b305786b-b626-4472-9beb-4befb8d8e39e > .shogun-accordion-wrapper > .shogun-accordion {
  border: 1px solid rgba(225, 226, 226, 1);
}

#s-b305786b-b626-4472-9beb-4befb8d8e39e > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading {
  background: rgba(255, 255, 255, 1);
  padding: 20px;
}

#s-b305786b-b626-4472-9beb-4befb8d8e39e > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-icon > span {
  color: rgba(84, 88, 90, 1);
}

#s-b305786b-b626-4472-9beb-4befb8d8e39e > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-body {
  background-color: #fff;
  border-top: 1px solid rgba(225, 226, 226, 1);
}

#s-b305786b-b626-4472-9beb-4befb8d8e39e > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading > .shogun-accordion-header > .shogun-accordion-title {
  color: rgba(84, 88, 90, 1);
  text-align: left;
  font-family: ;
  font-weight: ;
  font-style: ;
  font-size: 16px;
}

#s-b305786b-b626-4472-9beb-4befb8d8e39e > .shogun-accordion-wrapper > .shogun-accordion > .shogun-accordion-heading .shogun-accordion-icon {
  font-size: 16px;
}
#s-b0fd859f-0061-4dfa-9d00-b970a09efcae {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
}

#s-ac858f71-231b-4b2a-a5fd-7d879bf850e3 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
}

#s-55e19752-4827-4cfb-b737-7f7da8fe114d {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
}

#s-35ef7c33-2bc6-4bb3-8bc9-3841872c9579 {
  padding-top: 20px;
padding-left: 20px;
padding-bottom: 20px;
padding-right: 20px;
}

/*
  $vgutter : 20px
  $hgutter : 10px;
*/

.shg-c:before,
.shg-c:after {
  content: " ";
  display: table;
}

/**
  Ref:
  https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Positioning/Understanding_z_index/The_stacking_context
  https://dnf.slack.com/archives/C0514HB79/p1538741509000100
**/
.shogun-root {
  z-index: 1;
  position: relative;
  isolation: isolate;
}

.shogun-root iframe {
  display: initial;
}

@media (max-width: 1024px) {
  .shg-c,
  .shg-box {
    background-attachment: scroll !important;
  }
}

@media only screen
  and (min-width: 1024px) and (max-height: 1366px)
  and (-webkit-min-device-pixel-ratio: 1.5) and (hover: none)
  and (orientation: landscape) {
  .shg-box {
    background-attachment: scroll !important;
  }
}

#mc_embed_signup .clear {
  width: auto !important;
  height: auto !important;
  visibility: visible !important;
}

.shg-clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.shogun-image {
  max-width: 100%;
  min-height: inherit;
  max-height: inherit;
  display: inline !important;
  border: 0;
  vertical-align: middle;
}

.shg-fw {
  margin-left: calc(50% - 50vw);
  width: 100vw;
}

.shg-fw .shg-fw {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

div[data-shg-lightbox-switch] {
  cursor: pointer;
}

.shg-lightbox {
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.85);
}

.shg-lightbox.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  text-align: center;
}

.shg-lightbox .shg-lightbox-close {
  position: absolute;
  right: 0;
  padding: 5px 0;
  color: #fff;
  font-size: 45px;
  margin-right: 10px;
  line-height: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  z-index: 1;
}

.shg-lightbox .shg-lightbox-image-container {
  padding: 25px;
}

.shg-lightbox .shg-lightbox-image {
  margin: auto;
  max-height: 90vh;
  max-width: 100%;
}

.shg-lightbox .shg-lightbox-close:hover,
.shg-lightbox .shg-lightbox-close:focus {
  color: #a2a2a2;
  text-decoration: none;
  cursor: pointer;
}

.shg-lightbox .shg-lightbox-nav {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: 35px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(0%, -50%);
  z-index: 1;
}

.shg-lightbox .shg-lightbox-nav.hidden {
  display: none !important;
}

.shg-lightbox .shg-lightbox-nav.shg-nav-left {
  left: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMjAzIDU0NHEwIDEzLTEwIDIzbC0zOTMgMzkzIDM5MyAzOTNxMTAgMTAgMTAgMjN0LTEwIDIzbC01MCA1MHEtMTAgMTAtMjMgMTB0LTIzLTEwbC00NjYtNDY2cS0xMC0xMC0xMC0yM3QxMC0yM2w0NjYtNDY2cTEwLTEwIDIzLTEwdDIzIDEwbDUwIDUwcTEwIDEwIDEwIDIzeiIvPjwvc3ZnPg==);
}

.shg-lightbox .shg-lightbox-nav.shg-nav-right {
  right: 0;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48c3ZnIHdpZHRoPSIxNzkyIiBoZWlnaHQ9IjE3OTIiIHZpZXdCb3g9IjAgMCAxNzkyIDE3OTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgZmlsbD0id2hpdGUiPjxwYXRoIGQ9Ik0xMTcxIDk2MHEwIDEzLTEwIDIzbC00NjYgNDY2cS0xMCAxMC0yMyAxMHQtMjMtMTBsLTUwLTUwcS0xMC0xMC0xMC0yM3QxMC0yM2wzOTMtMzkzLTM5My0zOTNxLTEwLTEwLTEwLTIzdDEwLTIzbDUwLTUwcTEwLTEwIDIzLTEwdDIzIDEwbDQ2NiA0NjZxMTAgMTAgMTAgMjN6Ii8+PC9zdmc+);
}

@media screen and (min-width: 769px) {
  .shg-lightbox .shg-lightbox-image-container {
    padding: 50px;
  }
}

.shogun-lazyload:not([src]),
.shogun-lazyloading:not([src]) {
	opacity: 0;
}
.shogun-lazyloaded {
	opacity: 1;
	transition: opacity 300ms;
}
